home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / bixdos.arc / PDOS320 < prev    next >
Encoding:
Text File  |  1986-11-24  |  3.1 KB  |  83 lines

  1. TITLE: DOS 3.2 patches
  2.                         Patches for DOS 3.2 COMMAND.COM
  3.                         -------------------------------
  4.  
  5. These patches are adapted from the ones posted by skluger for DOS 3.1.
  6. I only adapted the ones I find useful for myself. If anyone would like
  7. to have one of the patches that appeared for 3.1, please contact me by
  8. BIXMail. I can then find out the right addresses.
  9.  
  10. No. 1 : CLS only clears 25 lines in 3.2, so it's already fixed
  11. No. 2 : given below
  12. No. 3 : given below
  13. No. 4 : command DATER not interesting for me
  14. No. 5 : TIMER also not interesting
  15. No. 6 : I don't use FIND personally
  16. No. 7 : dto., COMP
  17. No. 8 : given below
  18. No. 9 : given below, same addresses as in 3.1
  19. No.10 : who uses EDLIN ?
  20. No.11 : given below
  21. No.12 : works for 3.2 exactly as given for 3.1. I use a 20 meg disk as
  22.         drive C: and a 10 meg, which I patched for 2k clusters, as drive
  23.         D:. After upgrading to DOS 3.2 from 3.1 I had to reformat and
  24.         patch the disk. I don't know why, but now everything works fine.
  25.  
  26. Originally, patches 1 through 5 were obtained from the November 26, 1985 issue
  27. of PC Magazine.  It appeared on User-to-User.  The contributor of these patches
  28. is Calvin R. Shields from Louisville, Kentucky.
  29. Patches 6 through 12 were obtained from CompuServe.  It was posted on August 9,
  30. 1985 by Jim Gainsley.
  31. They were originally posted on BIX by skluger on September 10, 1986.
  32.  
  33. Patch 2:        Fix the ECHO command so that ECHO followed by two spaces may
  34. --------        be used to display a blank line.  The practice of using ECHO
  35.                 to generate a blank line is not supported by MicroSoft.
  36.                 However, this is an undocumented feature available in earlier
  37.                 DOS versions but not in DOS 3.2, and even some authors like
  38.                 Peter Norton uses ECHO with two spaces to display a blank
  39.                 line.
  40.         debug COMMAND.COM
  41.         -e 3A88 83 F9 02 72
  42.         -w
  43.         -q
  44.  
  45.  
  46. Patch 3:        Fix ECHO command so that ECHO OFF is the default for executing
  47. --------        a BATch file.  The first byte is modified to set ECHO OFF for
  48.                 the processing of the AUTOEXEC.BAT file, and the second byte is
  49.                 modified to set ECHO OFF for all BATch files executed from the
  50.                 DOS prompt.
  51.         debug COMMAND.COM
  52.         -e 115E 02
  53.         -e 1B2C 00
  54.         -w
  55.         -q
  56.  
  57.  
  58. Patch 8:        Changing the size of the default environment.
  59. --------
  60.         debug COMMAND.COM
  61.         -e 0D4F 1E         ;Set size to 544 bytes, use X'3C' for 1K bytes
  62.         -w
  63.         -q
  64.  
  65.  
  66. Patch 9:        Alter ANSI.SYS to disable the wait for retrace and the screen
  67. --------        blanking.
  68.         debug ANSI.SYS
  69.         -e 02E3 90 90
  70.         -e 02EA 90
  71.         -w
  72.         -q
  73.  
  74.  
  75. Patch 11:       Automatic installation of printer port for DOS PRINT
  76. ---------
  77.         debug PRINT.COM
  78.         -e 11C2 4 "LPT1"        ;Specify the printer port you want to use
  79.         -e 190D 90 90 90
  80.         -e 191F 90 90
  81.         -w
  82.         -q
  83.